* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

html,
body {
    height: 100%;
    width: 100%;
    background: #ffffff;
    scroll-behavior: smooth;
}

#main {
    height: 100%;
    width: 100%;
    background-color: #fff;
}

.home {
    height: 100%;
    width: 100%;
    /* background-image: url("../assets/photo-1717423640657-c1c6ea1d36f5.avif") */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    position: fixed;
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 111;
}

nav {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #ff0000; */
}

nav h1 {
    color: black;
    font-size: 30px;
    font-weight: 600;
}

nav h1 i {
    font-size: 40px;
    color: #4F39F6;
    margin-right: 8px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.menu {
    display: none;
}

.close {
    display: none;
    position: absolute;
    top: 70px;
    right: 90px;
}




nav ul li a {
    color: black;
    font-size: 16px;
    font-weight: 550;
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    /* space for underline */
}

/* underline effect */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #6C63FF;
    /* line color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(162, 85, 250, 0.129) 100%);
}



.hero-section h1 {
    color: black;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.hero-section p {
    color: #585656;
    font-size: 18px;
    font-weight: 450;
    text-align: center;
}

.hero-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

#action-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 550;
    color: rgb(0, 0, 0);
    background-color: #4F39F6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

#action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(105, 40, 255, 0.3)
}


#action-btn1 {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 550;
    color: rgb(0, 0, 0);
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1.5px solid #7b7b7be2;
}

#action-btn1:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(86, 19, 255, 0.3)
}


#action-btn1 a {
    color: white;
    text-decoration: none;
}

.expertise {
    /* width: 30%; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    gap: 25px;
    /* background-color: #c29c9c; */
}

.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.expertise-icon i {
    font-size: 24px;
    color: #00A63E;
}

.expertise-icon p {
    font-size: 16px;
    font-weight: 500;
    color: #585656;
}



.about-us {
    position: relative;
    height: auto;
    width: 100%;
    background-color: #f5f5f5;
}

.about-section {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    padding: 50px 0px;
}

.hero-section-content {
    width: 40%;
    height: 90%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    /* background-color: #676767; */
}

.hero-section-content h1 {
    color: black;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section-content p {
    color: #585656;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-section-img {
    width: 30%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.hero-section-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.join-us {
    height: auto;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    gap: 20px;
    margin-top: 50px;
    padding: 20px;
}

.join-us-left {
    width: 30%;
    height: 90%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

}

.join-us-left p {
    font-size: 14px;
    /* font-weight: 450; */
    color: #585656;
    line-height: 1.6;
    margin-top: 10px;
}

.join-us-left ul li {
    font-size: 15px;
    /* font-weight: 450; */
    color: #585656;
    line-height: 1.6;
    margin-top: 10px;
    list-style: none;
}

.join-us-left ul li i {
    color: #00A63E;
    margin-right: 8px;
}

.join-us-right {
    width: 35%;
    height: 90%;
    border-radius: 12px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.join-us-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.services {
    height: auto;
    width: 100%;
    /* background-color: #555555; */
    background-color: #f5f5f5;
}

.servies-heading {
    width: 100%;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: #674f4f; */
}

.servies-heading h1 {
    color: black;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.servies-heading p {
    color: #585656;
    font-size: 14px;
    /* font-weight: 450; */
    text-align: center;
    width: 50%;
}



.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    padding: 30px;
    /* background-color: #ffd2d2; */
}

.services-card {
    position: relative;
     max-width: 400px;
    height: auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.services-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}




.profile-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.profile-img img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
}

.services-card h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4F39F6;
    margin-top: 15px;
}

.services-card p {
    max-width: 370px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #585656;
    line-height: 1.6;
    margin-top: 10px;
}

.card-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 550;
    color: rgb(0, 0, 0);
    background-color: #4F39F6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    cursor: pointer;
}

.testimonial {
    width: 100%;
    background-color: #ffffff;
}

.testimonial-heading {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 110, 1) 28%, rgba(32, 13, 69, 1) 56%, rgba(18, 16, 16, 1) 91%);
}

.testimonial-heading h1 {
    color: #4F39F6;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-heading p {
    color: #a5a5a5;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-section {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 25px;
    margin-top: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    /* background-color: #eea8a8; */
}

.testimonial-card {
    position: relative;
    max-width: 370px;
    height: auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    overflow: hidden;
    transition: transform 0.5s all;
    border-top: 4px solid #4F39F6;
}

.testimonial-card p {
    font-style: italic;
    font-size: 14px;
    font-weight: 450;
    color: #585656;
    line-height: 1.6;

}

.testimonial-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #6C63FF;
    margin-top: 15px;
}

.testimonial-card i {
    font-size: 14px;
    color: #FF9529;
    margin-bottom: 9px;

}

.contact {
    height: auto;
    width: 100%;
    /* background-color: #555555; */
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* gap: 20px; */
    padding: 50px 0px;
    margin-top: 50px;

}

.contact-heading {
    width: 100%;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: #674f4f; */
}

.contact-heading h1 {
    color: black;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-heading p {
    color: #585656;
    font-size: 14px;
    /* font-weight: 450; */
    text-align: center;
    width: 50%;
}

.contact-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    padding: 50px 0px;
    /* background-color: #ffd2d2; */
}

.contact-left {
    width: 25%;
    height: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

form {
    width: 90%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
}

form label {
    font-size: 14px;
    font-weight: 550;
    color: #585656;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1.5px solid #7b7b7be2;
    border-radius: 8px;
    outline: none;
    resize: none;
}

textarea {
    height: 100px;
}

.contact-right {
    width: 25%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 70px;
    /* background-color: #ff7474; */
    border-radius: 12px;
}

.phone {
    width: 100%;
    height: 140px;
    padding: 15px;
    display: flex;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    background-color: #fff;
    transition: all 0.3s ease;
    /* Smooth transition */

}

.phone p {
    font-size: 14px;
    font-weight: 500;
    color: #585656;
    margin-top: 8px;
}

.phone i {
    font-size: 20px;
    color: #4F39F6;
    margin-right: 4px;
}




.phone:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
    /* Optional zoom effect */
}


/* footer{
    height: 45%;
    width: 100%;
    background-color: #10121d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
} */

/* Footer Styling */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section h2,
.footer-section h3 {
    color: #f4f4f4;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section ul li a {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #6c63ff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6c63ff;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: #6c63ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: #6C63FF;
    /* Indigo highlight */
    border-bottom: 1px solid #6C63FF;
}


@media screen and (max-width: 980px) {

    #main{
        width: auto;
        height: auto;
    }

    .home{
        width: auto;
        height: auto;
    }

    header nav ul {
        width: 100%;
        height: 100vh;
        background-color: #c9c9c986;
        backdrop-filter: blur(20px);
        top: 0px;
        left: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 90px;
        align-items: center;
        position: absolute;
        transition: 0.3 s ease-in-out;
    }

    nav {
        padding: 20px;
        width: 100%;
    }

    header nav ul li a {
        font-size: 16px;
    }

    header nav ul.open {
        left: 0;
        /* show the menu */
        transition: left 0.3s ease-in-out;
    }

    .hero-section{
        padding: 20px;
    }

    .about-section {
        width: auto;
        flex-direction: column;
        gap: 50px;
        padding: 20px 0px;
    }

    .hero-section-content{
        width: auto;
        padding: 20px;
    }

    .hero-section h1{
        font-size: 37px;
        text-align: center;
    }

    .hero-section-img {
        width: 90%;
        padding: 20px;
    }

    .hero-section-btn {
        flex-direction: column;
        gap: 20px;
    }

    #action-btn, #action-btn1 {
        padding: 23px 105px;
        text-align: center;
    }

    #action-btn1{
        padding: 23px 118px;
        text-align: center;
    }

    .expertise-icon p {
        font-size: 14px;
    }


    .menu {
        display: block;
        /* show it */
        color: #161515;
        font-size: 30px;
        cursor: pointer;
        font-family: 500;
    }

    .close {
        display: block;
        /* show it */
        color: #161515;
        font-size: 30px;
        cursor: pointer;
        font-family: 500;
    }

    .close:hover {
        color: #4F39F6;
        font-size: 34px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .about-section {
        /* flex-direction: column; */
        gap: 0px;
        padding: 0px 0px;
    }

    .join-us {
        flex-direction: column;
    }

    .services{
        padding: 20px;
    }

    .services-section {
        width: auto;
        flex-wrap: wrap;
    }

    .join-us-left{
        width: auto;
        padding: 10px;
    }

    .join-us-right{
        width: auto;
        padding: 20px;
        box-shadow: none;
    }

    .contact{
        width: auto;
    }

    .phone{
        width: 350px;
        border-radius: 12px;
    }



    .contact-main{
        flex-direction: column;
        gap: 30px;
    }

    .contact-left, .contact-right{
        width: auto;
        padding: 20px;
        box-shadow: none;
        gap: 25px;
    }


}

@media screen and (max-width: 390px) {

    nav h1{
        font-size: 24px;
    }

    nav h1 i{
        font-size: 30px;
    }

    .menu {
        font-size: 24px;
    }



    .hero-section h1{
        font-size: 26px;
        text-align: center;
        margin-top: 60px;
    }

    .hero-section p{
        font-size: 13px;
        text-align: center;
        margin-top: -10px;
    }

    #action-btn {
        padding: 15px 70px;
        text-align: center;
        font-size: 14px;
    }

    #action-btn1 {
        padding: 15px 81px;
        text-align: center;
        font-size: 14px;
    }

    .expertise{
        flex-direction: column;
        gap: 15px;
    }

    .expertise-icon p {
        font-size: 13px;
    }

    .services-section {
        gap: 30px;
        padding: 2px;
    }

    .servies-heading p{
        margin-bottom: 10px;
    }

    .testimonial-heading h1{
        font-size: 24px;
    }

    .join-us-right{
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.173);
    }

    .services-card {
        max-width: 355px;
        
        
    }

    .services-card h1 {
        font-size: 18px;
    }

    .testimonial-card {
        max-width: 355px;
        
    }

    .testimonial-card h2 {
        font-size: 18px;
    }

    .contact-heading{
        padding: 0px 15px;
    }

    .contact-left, .contact-right{
        width: 100%;
        padding: 15px;
        box-shadow: none;
        gap: 20px;
    }

    .contact-main{
        padding: 40px 15px;
    }

    form{
        padding: 0px;
    }

        header nav ul li a{
            font-weight: 15px;
        }

    

    .phone{
        width: auto;
        border-radius: 12px;
    }

    .close{
        right: 30px;
        top: 30px;
        font-size: 24px;
    }
}

<style>
/* ─────────────────────────────────────────────────────────
   PLACEMENT SECTION — Matches exact site style from screenshots
   White bg · Full width · Poppins + Plus Jakarta Sans
   Brand: #4F39F6
───────────────────────────────────────────────────────── */
 
.ps {
  background: #ffffff;
  padding: 80px 0 90px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  position: relative;
}
 
/* Very subtle lavender tint at top, matching the hero fade */
.ps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4F39F6, #a78bfa, #4F39F6);
}
 
/* Full-width container matching site layout */
.ps-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
 
/* ── SECTION HEADING — matches site exactly ── */
.ps-heading {
  text-align: center;
  margin-bottom: 52px;
}
.ps-heading h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
  line-height: 1.2;
}
.ps-heading h1 span { color: #4F39F6; }
.ps-heading p {
  color: #585656;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
 
/* ── STATS ROW — exact match from screenshot ── */
.ps-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.ps-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f7ff;
  border: 1.5px solid rgba(79,57,246,0.08);
  border-radius: 16px;
  padding: 22px 24px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.ps-stat:hover {
  box-shadow: 0 8px 32px rgba(79,57,246,0.12);
  transform: translateY(-3px);
  border-color: rgba(79,57,246,0.2);
}
.ps-stat-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: #ede9ff;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.ps-stat-icon i { color: #4F39F6; font-size: 1.1rem; }
.ps-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
  margin-bottom: 3px;
}
.ps-stat-label {
  font-size: 0.8rem;
  color: #585656;
  font-weight: 500;
}
 
/* ── TICKER ── */
.ps-ticker-wrap {
  background: #4F39F6;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 52px;
  display: flex;
}
.ps-ticker-label {
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ps-ticker-dot {
  width: 6px; height: 6px;
  background: #6ee7b7;
  border-radius: 50%;
  animation: ps-blink 1.6s ease-in-out infinite;
}
@keyframes ps-blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
.ps-ticker-scroll {
  overflow: hidden;
  padding: 14px 0;
  flex: 1;
  position: relative;
}
.ps-ticker-scroll::before,
.ps-ticker-scroll::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 36px; z-index: 2; pointer-events: none;
}
.ps-ticker-scroll::before { left: 0;  background: linear-gradient(90deg,#4F39F6,transparent); }
.ps-ticker-scroll::after  { right: 0; background: linear-gradient(-90deg,#4F39F6,transparent); }
.ps-ticker-inner {
  display: flex;
  width: max-content;
  animation: ps-scroll 32s linear infinite;
}
.ps-ticker-inner:hover { animation-play-state: paused; }
@keyframes ps-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ps-tick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.ps-tick i { color: rgba(255,255,255,0.45); font-size: 0.65rem; }
.ps-tick-sep { color: rgba(255,255,255,0.3); }
 
/* ── CARDS GRID — 3 cols matching site service cards ── */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
 
.ps-card {
  background: #ffffff;
  border: 1.5px solid rgba(79,57,246,0.1);
  border-radius: 20px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
  box-shadow: 0 2px 14px rgba(79,57,246,0.05);
}
.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(79,57,246,0.13);
  border-color: rgba(79,57,246,0.22);
}
/* Top gradient line on hover — matches service card style */
.ps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #4F39F6, #a78bfa);
  opacity: 0;
  transition: opacity 0.24s;
}
.ps-card:hover::before { opacity: 1; }
 
/* FEATURED card — col span 2 */
.ps-card-featured {
  grid-column: span 2;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8f7ff 0%, #ede9ff 100%);
  border-color: rgba(79,57,246,0.18);
}
.ps-card-featured::before { opacity: 1; }
.ps-card-featured-body { flex: 1; }
.ps-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: #585656;
  line-height: 1.75;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(79,57,246,0.05);
  border-left: 3px solid #4F39F6;
  border-radius: 0 8px 8px 0;
}
 
/* Placed badge */
.ps-placed {
  position: absolute;
  top: 18px; right: 18px;
  background: #d1fae5;
  color: #065f46;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 4px 11px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
}
.ps-placed-dot {
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  animation: ps-blink 1.8s ease-in-out infinite;
}
 
/* Subject pill */
.ps-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9ff;
  color: #4F39F6;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}
 
/* Avatar */
.ps-avatar {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ps-card-featured .ps-avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  font-size: 1.2rem;
  margin-bottom: 0;
}
 
.ps-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 3px;
}
.ps-role {
  font-size: 0.82rem;
  color: #4F39F6;
  font-weight: 600;
  margin-bottom: 14px;
}
.ps-sep {
  height: 1px;
  background: rgba(79,57,246,0.08);
  margin-bottom: 14px;
}
.ps-meta { display: flex; flex-direction: column; gap: 6px; }
.ps-meta-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.81rem;
  color: #585656;
}
.ps-meta-row i { color: #4F39F6; font-size: 0.72rem; width: 14px; text-align: center; }
 
/* ── PARTNER INSTITUTIONS STRIP ── */
.ps-partners {
  background: #f8f7ff;
  border: 1.5px solid rgba(79,57,246,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 52px;
  padding: 18px 0;
}
.ps-partners-inner {
  display: flex;
  width: max-content;
  animation: ps-scroll 24s linear infinite;
}
.ps-partners-inner:hover { animation-play-state: paused; }
.ps-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  border-right: 1px solid rgba(79,57,246,0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  white-space: nowrap;
  transition: color 0.2s;
}
.ps-partner:hover { color: #4F39F6; }
.ps-partner i { color: #4F39F6; font-size: 0.65rem; }
 
/* ── CTA — mirrors #action-btn exactly ── */
.ps-cta {
  background: #4F39F6;
  border-radius: 20px;
  padding: 52px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.ps-cta::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -150px; right: -120px;
  pointer-events: none;
}
.ps-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.ps-cta p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.ps-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
/* White button — mirrors #action-btn */
.ps-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #4F39F6;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.ps-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
/* Ghost — mirrors #action-btn1 */
.ps-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.28);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ps-btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.ps-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.ps-trust i { color: #6ee7b7; font-size: 0.65rem; }
 
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ps-container { padding: 0 28px; }
  .ps-stats { grid-template-columns: repeat(2, 1fr); }
  .ps-grid  { grid-template-columns: repeat(2, 1fr); }
  .ps-card-featured { grid-column: span 2; }
  .ps-cta { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .ps-cta-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .ps-container { padding: 0 16px; }
  .ps-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ps-stat { padding: 16px 14px; gap: 10px; }
  .ps-stat-num { font-size: 1.4rem; }
  .ps-grid  { grid-template-columns: 1fr; }
  .ps-card-featured { grid-column: span 1; flex-direction: column; }
  .ps-cta { padding: 32px 20px; }
  .ps-cta h2 { font-size: 1.4rem; }
  .ps-cta-btns { flex-direction: column; }
  .ps-ticker-label { display: none; }
  .ps-ps-heading h1 { font-size: 1.7rem; }
}